nhooyr.io/websocket.Conn.bw (field)
14 uses
nhooyr.io/websocket (current package)
conn.go#L54: bw *bufio.Writer
conn.go#L104: bw: cfg.bw,
conn.go#L120: c.writeBuf = extractBufioWriterBuf(c.bw, c.rwc)
write.go#L227: putBufioWriter(mw.c.bw)
write.go#L309: err = writeFrameHeader(c.writeHeader, c.bw, c.writeHeaderBuf[:])
write.go#L320: err = c.bw.Flush()
write.go#L342: return c.bw.Write(p)
write.go#L348: if c.bw.Available() == 0 {
write.go#L349: err = c.bw.Flush()
write.go#L356: i := c.bw.Buffered()
write.go#L359: if j > c.bw.Available() {
write.go#L360: j = c.bw.Available()
write.go#L363: _, err := c.bw.Write(p[:j])
write.go#L368: maskKey = mask(maskKey, c.writeBuf[i:c.bw.Buffered()])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |